projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bcd4068
)
listbase: Don't specify the same thing twice
author
Matthias Clasen
<mclasen@redhat.com>
Thu, 4 Feb 2021 05:13:53 +0000
(
00:13
-0500)
committer
Matthias Clasen
<mclasen@redhat.com>
Sun, 7 Feb 2021 16:44:15 +0000
(11:44 -0500)
We only need to set EXPLICIT_NOTIFY once.
Pointed out in https://www.viva64.com/en/b/0793/
gtk/gtklistbase.c
patch
|
blob
|
history
diff --git
a/gtk/gtklistbase.c
b/gtk/gtklistbase.c
index ed4f84ad2a787ced065eee52a5722db8a7f3cb43..5bc7ecaee31a4fa42903adb0a7da2ad4725c54e2 100644
(file)
--- a/
gtk/gtklistbase.c
+++ b/
gtk/gtklistbase.c
@@
-1148,7
+1148,7
@@
gtk_list_base_class_init (GtkListBaseClass *klass)
P_("The orientation of the orientable"),
GTK_TYPE_ORIENTATION,
GTK_ORIENTATION_VERTICAL,
- G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY
| G_PARAM_EXPLICIT_NOTIFY
);
+ G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY);
g_object_class_install_properties (gobject_class, N_PROPS, properties);